home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / iconv8_s.arc / ICONX.ARC / EXTCALL.C next >
Encoding:
C/C++ Source or Header  |  1990-03-28  |  437 b   |  22 lines

  1. #include "..\h\config.h"
  2. #include "..\h\rt.h"
  3. #include "rproto.h"
  4.  
  5. #ifdef ExternalFunctions
  6.  
  7. /*
  8.  * extcall - stub procedure for external call interface.
  9.  */
  10. dptr extcall(dargv, argc, ip)
  11. dptr dargv;
  12. int argc;
  13. int *ip;
  14.    {
  15.    *ip = 216;            /* no external function to find */
  16.    return (dptr)NULL;
  17.    }
  18.  
  19. #else                    /* ExternalFunctions */
  20. static char x;            /* prevent empty module */
  21. #endif                     /* ExternalFunctions */
  22.